summaryrefslogtreecommitdiff
path: root/app/[lng]/sales/(sales)/budgetary-tech-sales-hull/page.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/[lng]/sales/(sales)/budgetary-tech-sales-hull/page.tsx')
-rw-r--r--app/[lng]/sales/(sales)/budgetary-tech-sales-hull/page.tsx61
1 files changed, 0 insertions, 61 deletions
diff --git a/app/[lng]/sales/(sales)/budgetary-tech-sales-hull/page.tsx b/app/[lng]/sales/(sales)/budgetary-tech-sales-hull/page.tsx
deleted file mode 100644
index b1be29db..00000000
--- a/app/[lng]/sales/(sales)/budgetary-tech-sales-hull/page.tsx
+++ /dev/null
@@ -1,61 +0,0 @@
-import { searchParamsHullCache } from "@/lib/techsales-rfq/validations"
-import { getTechSalesHullRfqsWithJoin } from "@/lib/techsales-rfq/service"
-import { getValidFilters } from "@/lib/data-table"
-import { Shell } from "@/components/shell"
-import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
-import { RFQListTable } from "@/lib/techsales-rfq/table/rfq-table"
-import { type SearchParams } from "@/types/table"
-import * as React from "react"
-
-interface HullRfqPageProps {
- searchParams: Promise<SearchParams>
-}
-
-export default async function HullRfqPage(props: HullRfqPageProps) {
- // searchParams를 await하여 resolve
- const searchParams = await props.searchParams
-
- // 해양 HULL용 파라미터 파싱
- const search = searchParamsHullCache.parse(searchParams);
- const validFilters = getValidFilters(search.filters);
-
- // 기술영업 해양 Hull RFQ 데이터를 Promise.all로 감싸서 전달
- const promises = Promise.all([
- getTechSalesHullRfqsWithJoin({
- ...search, // 모든 파라미터 전달 (page, perPage, sort, basicFilters, filters 등)
- filters: validFilters, // 고급 필터를 명시적으로 오버라이드 (파싱된 버전)
- })
- ])
-
- return (
- <Shell variant="fullscreen" className="h-full"> {/* fullscreen variant 사용 */}
- {/* 고정 헤더 영역 */}
- <div className="flex-shrink-0">
- <div className="flex items-center justify-between">
- <div>
- <h2 className="text-2xl font-bold tracking-tight">
- 기술영업-해양 Hull RFQ
- </h2>
- </div>
- </div>
- </div>
-
- {/* 테이블 영역 - 남은 공간 모두 차지 */}
- <div className="flex-1 min-h-0">
- <React.Suspense
- fallback={
- <DataTableSkeleton
- columnCount={8}
- searchableColumnCount={2}
- filterableColumnCount={3}
- cellWidths={["10rem", "15rem", "12rem", "12rem", "8rem", "8rem", "10rem", "8rem"]}
- shrinkZero
- />
- }
- >
- <RFQListTable promises={promises} className="h-full" rfqType="HULL" />
- </React.Suspense>
- </div>
- </Shell>
- )
-} \ No newline at end of file